home *** CD-ROM | disk | FTP | other *** search
/ The Virtual Portfolio - N…a Showcase - Book 5 1995 / VIRTUAL [md5 EC7DB5CC033E38E511F666CE80BCE509].ISO / mac / Main / VP.mac / 00169.ls < prev    next >
Encoding:
Text File  |  1995-07-18  |  921 b   |  41 lines

  1. on enterFrame
  2.   set the visible of sprite 13 to 0
  3.   set the visible of sprite 14 to 0
  4.   set the visible of sprite 15 to 0
  5.   set the visible of sprite 16 to 0
  6.   set the visible of sprite 17 to 0
  7.   set the visible of sprite 18 to 0
  8.   set the visible of sprite 19 to 0
  9.   set the visible of sprite 25 to 0
  10.   if rollOver(13) then
  11.     set the visible of sprite 13 to 1
  12.   end if
  13.   if rollOver(14) then
  14.     set the visible of sprite 14 to 1
  15.   end if
  16.   if rollOver(15) then
  17.     set the visible of sprite 15 to 1
  18.   end if
  19.   if rollOver(16) then
  20.     set the visible of sprite 16 to 1
  21.   end if
  22.   if rollOver(17) then
  23.     set the visible of sprite 17 to 1
  24.   end if
  25.   if rollOver(18) then
  26.     set the visible of sprite 18 to 1
  27.   end if
  28.   if rollOver(19) then
  29.     set the visible of sprite 19 to 1
  30.   end if
  31.   if rollOver(25) then
  32.     set the visible of sprite 25 to 1
  33.   else
  34.     nothing()
  35.   end if
  36. end
  37.  
  38. on exitFrame
  39.   go(marker(0))
  40. end
  41.